steam_ugc_get_subscribed_items

语法:

steam_ugc_get_subscribed_items(item_list);


参数 描述
item_list A (previously created) DS list index.


返回: 布尔值


描述

This function will populate a DS list with all the published file IDs for the items that the user is currently subscribed to. You must first create the list and store the index in a variable, then pass this to the function. The function will return true if everything is correct and the Steam API is initialised, or false if there is an error.


例如:

steam_list = ds_list_create();
steam_ugc_get_subscribed_items(steam_list);

The above code will create an empty DS list and then populate it with the file IDs for all subscribed items for the user.